Structures
Declaration: Example (Step 2)
Structure type
Structure variable
struct student{
   int Age;
   float Salary;
};
struct student John, Mary;
John.Age = 20;
Mary.Age = John.Age;
struct {
   VARIABLES;
} StructureVariable;